home *** CD-ROM | disk | FTP | other *** search
- on photoview nextprev
- global photonum, photonummax, cursorwait
- cursor(cursorwait)
- set photonum to photonum + nextprev
- if photonum >= (photonummax + 1) then
- set photonum to 1
- else
- if photonum <= 0 then
- set photonum to photonummax
- end if
- end if
- set photo to photonum & "S.PICT"
- set the picture of cast "scenePhoto" to the picture of cast photo
- updateStage()
- showphotocounter()
- end
-
- on showphotocounter
- global photonum, photonummax, cursorpointer
- put photonum & " / " & photonummax into field "photoCnt"
- updateStage()
- cursor(cursorpointer)
- end
-